(else): Rephrase message of first if-then-else example so it is right
authorRobert J. Chassell <bob@rattlesnake.com>
Tue, 30 Jan 2007 12:56:27 +0000 (12:56 +0000)
committerRobert J. Chassell <bob@rattlesnake.com>
Tue, 30 Jan 2007 12:56:27 +0000 (12:56 +0000)
both in itself and in the "true" case of the expression, which asks
whether 4 is greater than 5.

lispintro/emacs-lisp-intro.texi

index 6e1259894461dde27c74ae463e42929129dc815c..0318ac5d3619e4c5c4bb682122769bb393b7e894 100644 (file)
@@ -4112,9 +4112,9 @@ is not greater than 5!} when you evaluate it in the usual way:
 
 @smallexample
 @group
-(if (> 4 5)                             ; @r{if-part}
-    (message "5 is greater than 4!")    ; @r{then-part}
-  (message "4 is not greater than 5!")) ; @r{else-part}
+(if (> 4 5)                               ; @r{if-part}
+    (message "4 falsely greater than 5!") ; @r{then-part}
+  (message "4 is not greater than 5!"))   ; @r{else-part}
 @end group
 @end smallexample